home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / Confuse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-18  |  849 b   |  76 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #ifndef __CONFUSE_H
  11. #define __CONFUSE_H
  12.  
  13. #include  <SubClass1.h>
  14. #include  <SubClass2.h>
  15. #include  <SubClass3.h>
  16.  
  17.  
  18. @interface SubClass1 (First_Test)
  19.  
  20. - additionalMethod1;
  21. - additionalMethod2;
  22.  
  23. @end
  24.  
  25.  
  26. @interface SubClass2 (First_Test)
  27.  
  28. - additionalMethod1;
  29. - additionalMethod2;
  30. - additionalMethod3;
  31.  
  32. @end
  33.  
  34.  
  35. @interface SubClass3 (First_Test)
  36.  
  37. + additionalClassMethod;
  38. - additionalMethod1a;
  39. - additionalMethod2a;
  40.  
  41. @end
  42.  
  43.  
  44. @interface SubClass1 (Second_Test)
  45.  
  46. - additionalMethod3;
  47.  
  48. @end
  49.  
  50.  
  51. @interface SubClass1 (Third_Test)
  52.  
  53. - additionalMethod4;
  54.  
  55. @end
  56.  
  57.  
  58. @interface SubClass1 (Fourth_Test)
  59.  
  60. - additionalMethod5;
  61.  
  62. @end
  63.  
  64.  
  65. @interface SubClass2 (Second_Test)
  66.  
  67. - additionalMethod4a;
  68. - additionalMethod5a;
  69. - additionalMethod6a;
  70. - additionalMethod7a;
  71. - additionalMethod8a;
  72.  
  73. @end
  74.  
  75. #endif
  76.